home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AP Professional Graphics CD-ROM Library
/
AP Professional Graphics CD-ROM Library.iso
/
mac
/
Macintosh
/
Appendix
/
GemsII
/
Source Code Gems II
/
BitCounting
/
Makefile
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Makefile
|
1995-03-08
|
172 b
|
11 lines
|
[
TEXT/MSWD
]
CFLAGS = -g
tester : test.c bit32.o
$(CC) $(CFLAGS) test.c -o tester bit32.o
bit32.o : bit32.c
$(CC) -c $(CFLAGS) bit32.c -o bit32.o
clean:
/bin/rm -f bit32.o tester